home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 0022-3.564 / dmg-0056 / 651.txt < prev    next >
Text File  |  1997-04-16  |  20KB  |  442 lines

  1. INFO-ATARI16 Digest         Tue, 14 Nov 89       Volume 89 : Issue 651
  2.  
  3. Today's Topics:
  4.                              Languages!!!
  5.                     PortFolio as a marketing aid ?
  6.                          Re : I/O Redirection
  7.                             SH 204 Upgrade
  8.    Time to create comp.sys.atari.flames (was Re: RE: Vapourware!!!)
  9.                             Various topics
  10.                   What does the TT Buy me?? (3 msgs)
  11.                                 WordUp
  12. ----------------------------------------------------------------------
  13.  
  14. Date: 14 Nov 89 16:28:32 GMT
  15. From: thelake!steve@UMN-CS.CS.UMN.EDU  (Steve Yelvington)
  16. Subject: Languages!!!
  17.  
  18. In article <46d19982.20b6d@apollo.HP.COM>,
  19.      rehrauer@apollo.HP.COM (Steve Rehrauer) writes ...
  20.  
  21. >In article <8911110458.AA06278@jupiter.nmt.edu> ehsnsr@JUPITER.NMT.EDU (Eric
  22.  Hobbs) writes:
  23. >>     I am looking into trying to learn a new computer language,
  24. >>but I really don't know which one to try out. The only things that
  25. >>I must have is a language that is in the Public Domain or it is
  26. >>Shareware (I'm a poor college student!), the language must support
  27. >>graphics and sound without too much hassle, and it _MUST_ be able
  28. >>to run on a 520STfm with 512K and a 360K SS/DD disk drive. Well
  29. >>that narrows it down, doesn't it. I don't really want to learn
  30. >>68000 assembly language and I only know BASIC and a little bit of
  31. >>Logo. (Pretty Limited, Huh?).
  32. >>     You guys and gals are my last hope! Save me from expensive
  33. >>languages and ST BASIC!!!!!ARRRRGH!
  34. >
  35. >If you just want a better BASIC, I'd suggest GFA BASIC.  I've never used it,
  36. >but most people seem to like it well enough (certainly can't get much worse
  37. >than ST BASIC, eh?).  I _believe_ the interpreter is (or was?) public domain?
  38. >At least, I'd swear I saw a copy of the GFA BASIC interpreter on a STart
  39. >magazine disk last year...
  40.  
  41. Not public domain. Public domain is a legal term that does not mean what
  42. most computer users seem to think it means.
  43.  
  44. Antic (the magazine and software publishers) took over distribution of GFA
  45. BASIC about the time GFA 3.0 was released, and disposed of the old version
  46. by making it part of the STart disk.
  47.  
  48. >Your system memory & disk size is probably going to encourage you to use an
  49. >interpreter (of whatever language), since they tend to be smaller than a
  50. >compiler for the equivalent language.
  51.  
  52. (stuff about Personal Pascal omitted)
  53.  
  54. >All of the other ST compilers I've had occasion to use require either more
  55. >memory than 512K, or another drive, or a hard-drive, or all three to be
  56. >useable & relatively pain-free.  Really, you may want to shop around for
  57. >another SS drive at the very least.  Or, better yet, upgrade to 1M of
  58. >memory and use a big RAM disk.
  59.  
  60. Mark Johnson's shareware C compiler, which is available from the
  61. archive-server@panarthea if you can get it to answer your mail, was
  62. developed on a one-drive 520ST. The C function library is not very
  63. complete, but the GEM bindings are pretty good. It's a reasonable first
  64. compiler for a student.
  65.  
  66. A second disk drive is well worth the investment, though.
  67.  
  68.    -- Steve Yelvington, up at the lake in Minnesota
  69.   ... pwcs.StPaul.GOV!stag!thelake!steve             (UUCP)
  70.  
  71. ------------------------------
  72.  
  73. Date: 14 Nov 89 15:12:14 GMT
  74. From: mcsun!sunic!tut!utacs!jackin@uunet.uu.net  (Markku M?enp??)
  75. Subject: PortFolio as a marketing aid ?
  76.  
  77. I think that PortFolio is an easy and profitable way to
  78. make Atari Corp. known in the businessworld.
  79.  
  80. I overheard a discussion in the HiTech-exhibition few weeks
  81. ago. One (business) man said to the other when the were at
  82. the Atari boot : " See (pointing at the ST with MegaScreen,
  83. which had a complex CAD-drawing on it), there's your games
  84. machine ". They had come to look at the PortFolio and they
  85. saw an Atari ST which didn't look like a games machine.
  86.  
  87. Now, if Atari is going to enter USA (no more flames please),
  88. Atari has to spend tons of money (real marketing needs it).
  89. PortFolio smoothens this process (and brings money too). I
  90. see it happen also in the UK. Atari UK had recently two full
  91. page ads (in PCW), one of which had PortFolio, the other
  92. Atari PC-range. No ST ads. It looks to me that Atari tries
  93. to shed it's games machine reputation away. Hope it succeeds.
  94.  
  95. By the way, now that I have read few books of economics, I
  96. understand much better Atari. It's a tough world out there.
  97.  
  98. MM.
  99.  
  100. PS. No flames please and please let's stop bashing TT.
  101.  
  102. _____________________________________________________
  103. ! Markku M?enp?? ! University of Tampere (Finland)  !
  104. _____________________________________________________
  105.  
  106. ------------------------------
  107.  
  108. Date: 13 Nov 89 23:44:48 GMT
  109. From: mcsun!ukc!newcastle.ac.uk!turing!csoc@uunet.uu.net  (Computer Society)
  110. Subject: Re : I/O Redirection
  111.  
  112. It should be done something like this :-
  113.  
  114.  
  115.      handle = Fopen/Fcreate ("filename", WRITE)        Obvious
  116.      Fforce (1, handle)                                Ditto
  117.      Pexec (kiddy)                                     Call child
  118.      Fforce (1,1)                                      Reset stdout
  119.      Fclose (handle)                                   Close file
  120.  
  121.  
  122.  
  123. Hope this solves the problem. I think there might be a more elegant way of
  124. resetting stdout, though. However, Fforce does the job.
  125.  
  126.  
  127. +--------------------------------------------------------------------+
  128. |     The University Of Newcastle-Upon-Tyne Computer Society         |
  129. |                     EMAIL: csoc@uk.ac.newcastle                    |
  130. +--------------------------------------------------------------------+
  131.  
  132. ------------------------------
  133.  
  134. Date: 13 Nov 89 21:11:39 GMT
  135. From: trwrb!root@ucbvax.Berkeley.EDU  (root)
  136. Subject: SH 204 Upgrade
  137.  
  138. I want to upgrade my 20 meg SH 204 harddrive to about 40 meg.  I hoped I
  139. could do this by simply replacing the Drive Mechanism, HOWEVER,
  140. my drive mechanism is a Tandom TM362 and I can not find the information I need.
  141. What are by options?
  142.  
  143.    * Should I install a 40 meg Tandom hard drive?  Where can I find a 40 meg
  144.  Tandom?
  145.    * Can I install a Seagate drive?  Which models?  Will I need more parts?
  146.    * Can I daisy chain the SH 204?  Will I need different software?
  147.  
  148. I am planing on buying the Spectre GCR and I want to have sufficient harddrive
  149. for the GCR.
  150.  
  151. Thank You,
  152. Gregory Gibson
  153.  
  154. ------------------------------
  155.  
  156. Date: 14 Nov 89 18:28:47 GMT
  157. From: sjsca4!greg@uunet.uu.net  (Greg Wageman)
  158. Subject: Time to create comp.sys.atari.flames (was Re: RE: Vapourware!!!)
  159.  
  160. Opinions expressed are the responsibility of the author.
  161.  
  162. In article <23996@cup.portal.com> Bob_BobR_Retelle@cup.portal.com writes:
  163. >Anthony Lapadula states:
  164. >
  165. >>(1)  I do resent being told in late '85 that my 1040ST would indeed
  166. >>be able to use the Blitter, which, of course, was due out RSN.  Don't
  167. >>know if I should blame my dealer or Atari, but the example stands.
  168. >
  169. >Sam Tramiel, President of Atari Corp promised, on a TV show called something
  170. >like "the Computer Show" that all STs would have a blitter upgrade made
  171. >available...    something like a year later, Atari finally admitted the lie,
  172. >and made the excuse that the FCC wouldn't let them do it...
  173.  
  174. I'm getting really disgusted with the endless stream of message like
  175. this one appearing in this group.  I've seen hardly a single message
  176. with anything like technical content, tips, hints, programming help,
  177. etc.  Perhaps it's time to creat comp.sys.atari.gripes or
  178. comp.sys.atari.flames...
  179.  
  180. There is quite a long way between a company stating an intention to
  181. (attempt to) provide something, and an actual product offering.  If
  182. you've any experience in the Real World (tm), Mr. Retelle, you'd know
  183. that in this imperfect world we must work in, sometimes things prove
  184. technically infeasable.
  185.  
  186. Sam Tramiel isn't an engineer.  The only thing he could be faulted for
  187. is making a statement before checking with his technical people about
  188. its feasability.  Even then, he might have been told it was
  189. technically possible, but his engineers didn't think of the FCC
  190. certification issue.  Atari isn't the first, and won't be the last
  191. corporation to have sales or marketing promise something that
  192. engineering couldn't deliver for reasons that didn't become evident
  193. until later.
  194.  
  195. The 520 and 1040 case designs are very RF-leaky.  It was because of
  196. this that they were sold in the US without the RF modulator: they
  197. simply couldn't pass the FCC Certification test with a modulator.  My
  198. understanding is that the 1040 is very close to violating the
  199. emissions standard.  Adding a blitter to the design would require
  200. re-certification, and would not pass.  It is not surprising to anyone
  201. with a little bit of electronics knowledge that retrofitting another
  202. processor into a design may cause that design to exceed some parameter
  203. like RF emissions.
  204.  
  205. Atari addressed this problem when they designed the Mega STs.  The
  206. sealed case design allows much better control of RF emissions than
  207. does the vented design of the 520's and 1040's.  The Megas are FCC
  208. certified with 4 megabytes of RAM, and with blitters.  If you want a
  209. blitter, Mr. Retelle, buy a Mega ST, which were engineered with them
  210. in mind.
  211.  
  212. Is it just me, or are others in this group tired of reading postings
  213. that sound like little children throwing tantrums because mommy didn't
  214. give the toy she promised?  "But you SAAAAAID I could have it!  You
  215. PROMMMISED!  Waaaah!"
  216.  
  217. Grow up, will you?
  218.  
  219. Copyright 1989 Greg Wageman     DOMAIN: greg@sj.ate.slb.com
  220. Schlumberger Technologies       UUCP:   ?uunet,decwrl,amdahl?!sjsca4!greg
  221. San Jose, CA 95110-1397         BIX: gwage  CIS: 74016,352  GEnie: G.WAGEMAN
  222.         Permission granted for not-for-profit reproduction only.
  223.  
  224. ------------------------------
  225.  
  226. Date: Tue, 14 Nov 89 15:04 EST
  227. From: JOHNBARNES@ENH.NIST.GOV
  228. Subject: Various topics
  229.  
  230. REPLIES TO VARIOUS SUBJECTS:
  231.  
  232. 1). From "Bob Marley" (address given as BAILEYS%.... in digest no
  233.      625- RE: Tech Specialties Catalog.
  234.  
  235.     I had a bad experience with Tech Specialties on a disk drive kit.
  236.     Colleagues of mine have had bad experiences with deleiveries of
  237.     "Tower cases".  I would not buy anything from them.  Some maga-
  238.     zines no longer accept their advertising.
  239.     They failed to deliver their products in a timely manner and then
  240.     failed to support them once delivered.
  241.  
  242. 2). To "Marty" with the boot problem - The symptoms you describe almost
  243.     always go away when you replace a defective .ACC file with a good
  244.     copy.  You may also be experiencing marginal reading ability from
  245.     your disc drive.  Strip away all .ACC's and start over.  Autoboots
  246.     can also cause this problem.  Strip them out and reload them
  247.     on at a time until you find the one that causes the problem.  Also
  248.     make sure that your machine has been turned off long enough to clear
  249.     RAM.
  250.  
  251. 3) Request for Uniterm on Disc - Get hold of a copy of Current Notes
  252.     Magazine from your local store.  Uniterm is in their PD library.
  253.     If it is not listed in the latest issue just check with the
  254.     publisher at the address given in the magazine.  I think the disk
  255.     number is around 302.
  256.  
  257. 4). To Mustafa Thamer:  There are a couple of decent command shells.
  258.     The one I use most often is DO_IT! from QMI.  In the PD world
  259.     there is GULAM (look for it in the NET World) for those who
  260.     insist on unix-like obscurity.  There are a couple of simpler
  261.     ones like PCOMMAND available from Current Notes.
  262.  
  263.  
  264.  
  265.  
  266. ------------------------------
  267.  
  268. Date: 14 Nov 89 15:22:14 GMT
  269. From: asuvax!hrc!force!covertr@handies.ucar.edu  (Richard E. Covert)
  270. Subject: What does the TT Buy me??
  271.  
  272. In article <46c15364.20b6d@apollo.HP.COM>, rehrauer@apollo.HP.COM (Steve
  273.  Rehrauer) writes:
  274. > In article <46bcb82f.14a1f@force.UUCP> covertr@force.UUCP (Richard E. Covert)
  275.  writes:
  276. > [ "Why buy a TT/P?" ]
  277. > >What has happened to Atari Corp?? why can't they design and produce a new
  278. > >machine as nice as the ST was back in 1985?? The ST beat other computers
  279. > >hands down in 1985. I wish the TT could do the same in 1990!!
  280. >
  281. >     Richard, I humbly suggest that what you seem to want, and what I myself
  282. >     wouldn't mind having, is an ST emulator for the Amiga.  Think about it.
  283. >     You want plug-in CPU upgrades (Amiga can do).  You want multitasking
  284. >     (Amiga can do).  You want slots & a more standard bus (A2000 can do;
  285. >     didn't C= design the A2000 with some slots that accept PC cards?).  You
  286. >     want better graphics (well, C= continues to improve their graphics chips,
  287. >     and with an A2000 you can buy a PC Targa board if you need something
  288. >     better).  Outline screen fonts?  Well, I don't know of any box in the
  289. >     general ST/Amiga/Mac price-range that does that (though I'm sure I'll
  290. >     be "gently corrected" if I'm wrong ;-).
  291. >
  292. >     As far as I can tell from your many previous postings, the only real
  293. >     reason you have (or that any of us have, probably) for wanting to stick
  294. >     with an Atari-brand machine is the (possibly substantial) investment
  295. >     you've made in software.
  296. >
  297. > --
  298. > >>"Aaiiyeeee!  Death from above!"<< | Steve Rehrauer, rehrauer@apollo.hp.com
  299. >    "Flee, lest we be trod upon!"    | The Apollo Computer Division of H.P.
  300.  
  301.  
  302. Actually, the MAIN reason that I still like my STs (yes, I have two and I still
  303. use both of them) is that the GEM interface is still better than anything that
  304. I can buy for an IBM PC clone.
  305.  
  306. I just bought the current issue of the (US) magazine COMPUTER LANGUAGE, November
  307. 1989. It dealt with the various multitasking OSes and windowing packages
  308. available for the IBM PCs. and it was a very discouraging magazine. It appears
  309. that PCs (even 80386 and 80486) are still stumbling around the 640K barrier
  310. imposed by the original IBM PC/XT. So, there are few good Graphical User
  311. Interfaces available for the IBM PCs. Oh, there are lots of windowing (single
  312. tasking, single user) packages,but they are are unique and require learning
  313. their library functions. There is NO standard GUI Desktop for IBM PCs
  314. similiar to the Mac or GEM.
  315.  
  316. Now, I need to research the availability of UNIX/X Windows for IBM PCs.
  317. COMPUTER LANGAUGE had verry little to say about UNIX; it was strictly MS DOS.
  318. If UNIX with X windows are becoming more popular then I will seriously
  319. consider buying an IBM PC clone.
  320.  
  321. I really enjoy the GEM interface. I am writing some programs now with GEM
  322. interfaces to them. My biggest problem right now is that I have an early,
  323. buggy, version of HiSoft's WERCS (distributed by Michtron in the US). WERCS
  324. keeps trashing my HRD file once I develope a BIG RSC file. I have asked
  325. Michtron on GEnie (well just last night) about how to upgrade WERCS. I was
  326. informed that there is a newer version of WERCS which doesn't crash. My WERCS
  327. is version 1.68 Dated October 28 1988.
  328.  
  329. Anyway, what I want in a computer is SPEED and a Good User Interface. What I
  330. expect from a Computer Maker is variety and CHOICE and later Support. And that
  331. is was is lacking from Atari.
  332.  
  333. Rich Covert
  334.  
  335. ------------------------------
  336.  
  337. Date: 14 Nov 89 19:33:03 GMT
  338. From: phoenix@g.ms.uky.edu  (R'ykandar Korra'ti)
  339. Subject: What does the TT Buy me??
  340.  
  341. In article <12430010@acf5.NYU.EDU> mitsolid@acf5.NYU.EDU (Thanasis Mitsolides)
  342.  writes:
  343. >I Assume you haven't heard of Microsoft windows or Desqview for the PCs.
  344. >It takes less that $1000 of hardware to multitask DOS using a graphical
  345. >environment and virtual memory (of sorts).
  346.      Desqview has about the same amount of support that CP/M does. Doesn't
  347. count.
  348.      And Microsoft is saying that Windows 3.0 (the Wowzer-Bang Gee-Wiz Update
  349. That Will Make Windows Really Neat And Worth Using) will break all current
  350. Windows applications. No, I'm not making this up. Software will break.
  351. FIXING it will be semi-trivial - but try explaining that to all the people
  352. who purchased Windows applications expecting them to work from version to
  353. version.
  354.      Personally, if Microsoft really does release an incompatible version
  355. of Windows, I think that'll kill the market. (This is also why WordPerfect
  356. has not been doing anything about Windows, I understand; I'm told they found
  357. out about it already and decided just to wait for Windows 3 than waste their
  358. time on software that'll be de facto dead in six months to a year.)
  359.                                       So very, very happy I don't own a Clone,
  360.                                                     - R'ykandar.
  361. --
  362. | R'ykandar Korra'ti, Editor, LOW ORBIT | phoenix@ms.uky.edu | CIS 72406,370 |
  363. | Elfinkind, Unite! | phoenix@ukma.bitnet | PLink: Skywise | QLink: Bearclaw |
  364.  
  365. ------------------------------
  366.  
  367. Date: 14 Nov 89 17:16:00 GMT
  368. From: hp-sdd!apollo!rehrauer@hplabs.hp.com  (Steve Rehrauer)
  369. Subject: What does the TT Buy me??
  370.  
  371. In article <46d16986.14a1f@force.UUCP> covertr@force.UUCP (Richard E. Covert)
  372.  writes:
  373. >Tell that the Mac users!! Heck, a MAC SE can be upgraded to a Mac SE/30.
  374. >sure it costs money but you can do it!!
  375.  
  376. Have you checked out the price?  If I were an SE owner, I'd keep the SE and buy
  377. an SE/30 (the $$ difference between upgrading and buying new isn't all that
  378.  much).
  379. And then I'd have TRUE multitasking... ;-O ;-P ;->
  380.  
  381. >Why can't Atari LEARN from Apple?? I guess Atari will be synonymous with
  382. >CHEAP in the future!!
  383.  
  384. Oh, there's a different synonym for them now?  C'mon, Richard -- they've found
  385. their niche and exploit it fairly well.  Don't blame them for not being Apple.
  386. Expect less from Atari; you'll live longer. ;-)
  387.  
  388. >> Looks like Atari has a very interesting product, if they do bring out
  389. >> Unix for it and ship both in a timely fashion.
  390. >
  391. >Oh come on!! The MacIIci has a 25 MHZ 68030 in it!! The TT will have a 16 MHZ
  392.  68030.
  393. >Which is outdated before it is even on the shelf!!!
  394.  
  395. Oh give me a break!  There's a rather big price jump between the 16 & 25MHz
  396.  parts.
  397. It sounds like a reasonable trade-off to me.  Assuming it ever gets on the
  398.  shelf,
  399. which is what we're all waiting for, right?
  400.  
  401. [ Deleted much, much more... ]
  402.  
  403. Will you and Greg please take your arguments to email?  Those of us who haven't
  404. yet added an entry for "Richard E. Covert" to our kill-files would probably
  405. appreciate it.  Everyone airs their gripes now & then (I plead guilty), but this
  406. IS getting a bit stale...
  407.  
  408. --
  409. >>"Aaiiyeeee!  Death from above!"<< | Steve Rehrauer, rehrauer@apollo.hp.com
  410.    "Flee, lest we be trod upon!"    | The Apollo Computer Division of H.P.
  411.  
  412. ------------------------------
  413.  
  414. Date: 14 Nov 89 15:30:03 GMT
  415. From: mcsun!sunic!tut!utacs!jackin@uunet.uu.net  (Markku M?enp??)
  416. Subject: WordUp
  417.  
  418. I have three questions to ask :
  419.  
  420. 1.
  421. How can I reach NeoCept (or somebody working there) via
  422. email. I hate to use real mail because it takes so long.
  423. And phoning takes 1.3 $ a minute.
  424.  
  425. 2.
  426. Could somebody mail me the demo of using two columns
  427. in WordUp ?
  428.  
  429. 3.
  430. Has somebody used UltraScript with WordUp ? Any comments ?
  431.  
  432. Thanks,
  433.         MM.
  434. _____________________________________________________
  435. ! Markku M?enp?? ! University of Tampere (Finland)  !
  436. _____________________________________________________
  437.  
  438. ------------------------------
  439.  
  440. End of INFO-ATARI16 Digest V89 Issue #651
  441. *****************************************
  442.